4ff5b842acf6c38a0400055104301eaf2a4dbd09,src/main/java/codechicken/nei/recipe/ContainerRecipe.java,ContainerRecipe,slotClick,#number#number#boolean#EntityPlayer#,113

Before Change


        ItemStack stack = recipeInventory.getStackInSlot(slot);
        if (stack != null) {
            if (button == 0) {
                GuiCraftingRecipe.openRecipeGui("item", stack);
            } else if (button == 1) {
                GuiUsageRecipe.openRecipeGui("item", stack);
            }

After Change


        ItemStack stack = recipeInventory.getStackInSlot(slot);
        if (stack != null) {
            if (button == 0) {
                boolean opened = GuiCraftingRecipe.openRecipeGui("item", stack);
                if (!opened) {
                    JEIIntegrationManager.openRecipeGui(stack);
                }
            } else if (button == 1) {